github.com/klauspost/compress/fse.bitReader.off (field)
15 uses
github.com/klauspost/compress/fse (current package)
bitreader.go#L19: off uint // next byte to read is at in[off - 1]
bitreader.go#L30: b.off = uint(len(in))
bitreader.go#L72: v := b.in[b.off-4:]
bitreader.go#L77: b.off -= 4
bitreader.go#L85: if b.off > 4 {
bitreader.go#L86: v := b.in[b.off-4:]
bitreader.go#L91: b.off -= 4
bitreader.go#L94: for b.off > 0 {
bitreader.go#L95: b.value = (b.value << 8) | uint64(b.in[b.off-1])
bitreader.go#L97: b.off--
bitreader.go#L104: b.value = binary.LittleEndian.Uint64(b.in[b.off-8:])
bitreader.go#L106: b.off -= 8
bitreader.go#L111: return b.bitsRead >= 64 && b.off == 0
decompress.go#L278: for br.off >= 8 {
decompress.go#L295: for br.off >= 8 {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |